-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nip56 buttons #44
Nip56 buttons #44
Conversation
There's a branch that solves the issue described in slawlor/ractor#225 here we depend on a fork own by us to solve this
Pull Request Test Coverage Report for Build 9875620291Details
💛 - Coveralls |
@@ -22,8 +22,8 @@ libc = "0.2.155" | |||
log = "0.4.21" | |||
metrics = "0.23.0" | |||
metrics-exporter-prometheus = "0.15.0" | |||
nostr-sdk = "0.31.0" | |||
ractor = "0.10.3" | |||
nostr-sdk = { git = "https://github.com/rust-nostr/nostr.git", ref = "d244d10f53bf0ad2a1e84fffdf658c84d7bcce0c" } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a temporary change so that a PR I added is included and we don't need to wait for the new release
nostr-sdk = "0.31.0" | ||
ractor = "0.10.3" | ||
nostr-sdk = { git = "https://github.com/rust-nostr/nostr.git", ref = "d244d10f53bf0ad2a1e84fffdf658c84d7bcce0c" } | ||
ractor = { git = "https://github.com/planetary-social/ractor.git", branch = "output_ports" } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The output_ports branch solves an edge case with the library that's still not part of the main branch
I tested this locally and integrated to everything through ngrok so I'll go ahead and merge, we can always open another PR for any code related change. |
Part of planetary-social/nos#1247